<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/meson.git/test cases/java, branch cppnoexcept</title>
<subtitle>github.com: mesonbuild/meson.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/meson.git/'/>
<entry>
<title>tests/java: force latency in generation to exercise race</title>
<updated>2018-11-07T22:26:14+00:00</updated>
<author>
<name>Dylan Baker</name>
<email>dylan@pnwbakers.com</email>
</author>
<published>2018-11-06T23:57:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/meson.git/commit/?id=62e1735828753012b3cf80f94ab4e176b015d17d'/>
<id>62e1735828753012b3cf80f94ab4e176b015d17d</id>
<content type='text'>
Because we are racing here. In reality *all* of the java in that target
may rely on the generated file, so we need to block all of them, like we
would for headers in C/C++.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Because we are racing here. In reality *all* of the java in that target
may rely on the generated file, so we need to block all of them, like we
would for headers in C/C++.
</pre>
</div>
</content>
</entry>
<entry>
<title>ninjabackend: add generated source files to jar compile target source list</title>
<updated>2018-11-02T20:27:25+00:00</updated>
<author>
<name>Aurélien Zanelli</name>
<email>aurelien.zanelli@actronika.com</email>
</author>
<published>2018-10-31T11:36:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/meson.git/commit/?id=5af84440bcfb3fd5ab8f2791b5e6a57fabfcbc19'/>
<id>5af84440bcfb3fd5ab8f2791b5e6a57fabfcbc19</id>
<content type='text'>
Otherwise, passing result of custom_target() to jar() target is ignored
and won't be compiled resulting in build fail.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Otherwise, passing result of custom_target() to jar() target is ignored
and won't be compiled resulting in build fail.
</pre>
</div>
</content>
</entry>
<entry>
<title>java: add jar linking test</title>
<updated>2018-07-03T19:33:54+00:00</updated>
<author>
<name>Niclas Moeslund Overby</name>
<email>noverby@prozum.dk</email>
</author>
<published>2018-06-12T11:43:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/meson.git/commit/?id=bc8239ded025d05d924e0e09b359941505e729b5'/>
<id>bc8239ded025d05d924e0e09b359941505e729b5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>tests: Remove redundant test and include_directories('.')</title>
<updated>2018-05-16T12:53:30+00:00</updated>
<author>
<name>Niclas Moeslund Overby</name>
<email>noverby@prozum.dk</email>
</author>
<published>2018-05-16T12:52:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/meson.git/commit/?id=ef16fb2e973cf7d5aa4850decdc404be5389b8f3'/>
<id>ef16fb2e973cf7d5aa4850decdc404be5389b8f3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ninja: add build dir to javac -sourcepath</title>
<updated>2018-05-16T12:53:30+00:00</updated>
<author>
<name>Robert Bragg</name>
<email>robert@impossible.com</email>
</author>
<published>2018-02-08T00:33:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/meson.git/commit/?id=ec7b834b6e76aac8cc64b37a9cad643d556139c5'/>
<id>ec7b834b6e76aac8cc64b37a9cad643d556139c5</id>
<content type='text'>
To allow the javac -implicit:class behaviour to know where to find
generated .java files then the build directory for the target is also
added to the -sourcefile path.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
To allow the javac -implicit:class behaviour to know where to find
generated .java files then the build directory for the target is also
added to the -sourcefile path.
</pre>
</div>
</content>
</entry>
<entry>
<title>ninja: avoid needing include_directory('.') with jar()</title>
<updated>2018-05-16T12:53:30+00:00</updated>
<author>
<name>Robert Bragg</name>
<email>robert@impossible.com</email>
</author>
<published>2018-02-08T00:11:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/meson.git/commit/?id=61dd46811b324a070c9a5007ac9b92a58fce9bb4'/>
<id>61dd46811b324a070c9a5007ac9b92a58fce9bb4</id>
<content type='text'>
Although only one file is passed to javac at a time, if your code has
any inter-file dependencies javac still needs to know how to find other
source files for its -implicit:class feature to work whereby it will
automatically also compile files that the given file depends on.

-implicit:class is the default, practical, behaviour of javac since
otherwise it would be necessary to declare the class dependencies
for parallel java builds to be feasible.

Passing "include_directory: include_directory('.')" to jar() causes
-souredir &lt;path/to/top/of/java/src&gt; to be passed to javac which then
enables your source code to have inter-file class dependencies -
assuming none of your source code is generated.

This ensures that '.' is included by default.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Although only one file is passed to javac at a time, if your code has
any inter-file dependencies javac still needs to know how to find other
source files for its -implicit:class feature to work whereby it will
automatically also compile files that the given file depends on.

-implicit:class is the default, practical, behaviour of javac since
otherwise it would be necessary to declare the class dependencies
for parallel java builds to be feasible.

Passing "include_directory: include_directory('.')" to jar() causes
-souredir &lt;path/to/top/of/java/src&gt; to be passed to javac which then
enables your source code to have inter-file class dependencies -
assuming none of your source code is generated.

This ensures that '.' is included by default.
</pre>
</div>
</content>
</entry>
<entry>
<title>ninja: pass separated paths to javac -sourcepath</title>
<updated>2018-05-16T12:53:30+00:00</updated>
<author>
<name>Robert Bragg</name>
<email>robert@impossible.com</email>
</author>
<published>2018-02-08T00:25:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/meson.git/commit/?id=65b730bd59790338a6bfad6f976ff74b12d6bc13'/>
<id>65b730bd59790338a6bfad6f976ff74b12d6bc13</id>
<content type='text'>
The -sourcepath option can't be passed multiple times to javac, since it
simply overrides prior arguments. Instead -sourcepath takes a colon (or
semi-colon on windows) separated list of paths.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The -sourcepath option can't be passed multiple times to javac, since it
simply overrides prior arguments. Instead -sourcepath takes a colon (or
semi-colon on windows) separated list of paths.
</pre>
</div>
</content>
</entry>
<entry>
<title>Do not strip jar targets. Closes #1343.</title>
<updated>2017-02-06T18:09:22+00:00</updated>
<author>
<name>Jussi Pakkanen</name>
<email>jpakkane@gmail.com</email>
</author>
<published>2017-02-02T17:37:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/meson.git/commit/?id=14e0529a037eb8f3d809822c811d2c034d8f0788'/>
<id>14e0529a037eb8f3d809822c811d2c034d8f0788</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Make Java compilation work with inner classes. Closes #1157.</title>
<updated>2016-12-12T19:01:10+00:00</updated>
<author>
<name>Jussi Pakkanen</name>
<email>jpakkane@gmail.com</email>
</author>
<published>2016-12-10T20:49:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/meson.git/commit/?id=5787a4b4fba7a5ef3075b30d941239e17ef4fa4f'/>
<id>5787a4b4fba7a5ef3075b30d941239e17ef4fa4f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Can set compiler arguments in Java.</title>
<updated>2016-11-20T21:57:58+00:00</updated>
<author>
<name>Jussi Pakkanen</name>
<email>jpakkane@gmail.com</email>
</author>
<published>2016-11-19T22:26:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/meson.git/commit/?id=c9a46fcc93461ece4ac6d83b1875cd0f5fe0c684'/>
<id>c9a46fcc93461ece4ac6d83b1875cd0f5fe0c684</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
